home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / LineEditor / Actions < prev    next >
Text File  |  1994-09-19  |  1KB  |  41 lines

  1. Bindable actions for LineEditor    
  2.  
  3. Totally ignore keypress                IGNORE
  4. Beep and ignore keypress            BEEP
  5. Move cursor left                LEFT
  6. Move cursor right                RIGHT
  7. Delete right to next word end            DELWORD
  8. Goto end of line                CRIGHT
  9. Goto start of line                CLEFT
  10. Goto start of next word                SRIGHT
  11. Goto end of previous word            SLEFT
  12. Toggle insert/overtype mode            TOGGLEINSERT
  13. Ctrl-U default action                DELLINE
  14. Remove line from history            REMOVELINE
  15. tcsh style filename completion            COMPLETE
  16. 4DOS TAB                    COMPLETENEXT
  17. 4DOS Shift-TAB                    COMPLETEPREV
  18. Set mark                    SETMARK
  19. Enable copy mode (toggles if not on COPY or arrow keys)    COPY
  20. Disble copy mode                UNCOPY
  21. Swap mark and cursor                SWAPMARK
  22. Emacs Ctrl-W                    CUT
  23. Delete character to cursor right        DELETENEXT
  24. Delete character to cursor left            DELETE
  25. Delete history buffer(s)            WIPEHISTORY
  26. Emacs Ctrl-K                    DELTOEND
  27. Emacs Ctrl-Y                    PASTE
  28. Swap character with char to cursor left        SWAPCHARS
  29. Handle next keypress as OS_ReadLine would    QUOTE
  30. Process this key as OS_ReadLine would        VANILLA
  31. Recall oldest line in history            CUP
  32. Recall most recent line in history        CDOWN
  33. Recall next oldest line                UP
  34. Recall next most recent line            DOWN
  35. Recall next oldest line matching start        SUP
  36. Recall next most recent line matching start     SDOWN
  37. ESCAPE key pressed                ESCAPE
  38. Function key F<keycode AND &0F> (F0 = PRINT)    FNKEY
  39. Finish editting line - don't record in history    RETURN
  40. Finish editting line - ENTER into history    ENTER
  41.